home *** CD-ROM | disk | FTP | other *** search
/ Computer Shopper 125 / Computer Shopper CD-ROM Issue 125 (1998-07)(Dennis Publishing).iso / Business / Dazzler / DAZZLER.Z / Traverse.class (.txt) < prev    next >
Encoding:
Java Class File  |  1997-11-26  |  294 b   |  14 lines

  1. public interface Traverse {
  2.    Object end();
  3.  
  4.    boolean atEnd();
  5.  
  6.    boolean atStart();
  7.  
  8.    Object next();
  9.  
  10.    Object start();
  11.  
  12.    Object prev() throws illegalListOpException;
  13. }
  14.